home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / textcsg < prev    next >
Text File  |  1997-01-21  |  483b  |  30 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "colors.inc"
  7. #include "stones.inc"
  8.  
  9. background { color rgb 1 }
  10.  
  11. camera {
  12.   location <-3, 5, -15>
  13.   look_at 0
  14.   angle 26
  15. }
  16.  
  17. light_source { <500,500,-1000> White }
  18.  
  19. difference {
  20.   box { <-3.5, -1, 0.1>, <3.5, 1, 1>
  21.     texture { T_Stone10 }
  22.   }
  23.   text { ttf "timrom.ttf" "POV-RAY 3.0" 0.15, 0
  24.     pigment { BrightGold }
  25.     finish { reflection .25 specular 1 }
  26.     translate -3*x
  27.   }
  28. }
  29.  
  30.